home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / VIEWEX.PAK / ENTERDLG.CPP next >
C/C++ Source or Header  |  1997-05-06  |  1KB  |  50 lines

  1. // enterdlg.cpp : implementation file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. #include "stdafx.h"
  14. #include "viewex.h"
  15. #include "enterdlg.h"
  16.  
  17. #ifdef _DEBUG
  18. #undef THIS_FILE
  19. static char BASED_CODE THIS_FILE[] = __FILE__;
  20. #endif
  21.  
  22. /////////////////////////////////////////////////////////////////////////////
  23. // CEnterDlg dialog
  24.  
  25. IMPLEMENT_DYNAMIC(CEnterDlg, CDialog)
  26.  
  27. CEnterDlg::CEnterDlg(CWnd* pParent /*=NULL*/)
  28.     : CDialog(CEnterDlg::IDD, pParent)
  29. {
  30.     //{{AFX_DATA_INIT(CEnterDlg)
  31.     m_strInput = "";
  32.     //}}AFX_DATA_INIT
  33. }
  34.  
  35. void CEnterDlg::DoDataExchange(CDataExchange* pDX)
  36. {
  37.     CDialog::DoDataExchange(pDX);
  38.     //{{AFX_DATA_MAP(CEnterDlg)
  39.     DDX_Text(pDX, IDC_EDIT1, m_strInput);
  40.     //}}AFX_DATA_MAP
  41. }
  42.  
  43. BEGIN_MESSAGE_MAP(CEnterDlg, CDialog)
  44.     //{{AFX_MSG_MAP(CEnterDlg)
  45.     //}}AFX_MSG_MAP
  46. END_MESSAGE_MAP()
  47.  
  48. /////////////////////////////////////////////////////////////////////////////
  49. // CEnterDlg message handlers
  50.